home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 14 / 123shl_d.zip / WORKCOPY.BAT < prev   
DOS Batch File  |  1986-02-04  |  1KB  |  51 lines

  1. echo OFF
  2. cls
  3. echo   
  4. echo               Make working copy of
  5. echo               ____________________
  6. echo              /    123 Shell      \
  7. echo             /    Version 11.1d    \
  8. echo             \     2/4/86     /
  9. echo              \____________________/
  10. echo   
  11. echo ***********************************************************************
  12. echo * This batch file will produce a copy of all 123 Shell files in their *
  13. echo * unarchived status from one disk drive to another.              *
  14. echo ***********************************************************************
  15. echo  
  16. if %1x==x goto badargs
  17. if %2x==x goto badargs
  18. if %1==%2 goto badargs
  19. echo  
  20. echo   Place SOURCE disk in drive %1:
  21. echo   Place TARGET disk in drive %2:
  22. pause 
  23. copy %1:AUTO123.WKS %2:>Nul
  24. copy %1:MACRO.WKS %2:>nul
  25. copy %1:HELP.WKS %2:>nul
  26. copy %1:GRAF.WKS %2:>nul
  27. copy %1:ASC.WKS %2:>nul
  28. copy %1:APP.WKS %2:>nul
  29. copy %1:DRY.WKS %2:>nul
  30. copy %1:REGS.WKS %2:>nul
  31. copy %1:123SHELL.TXT %2:>nul
  32. copy %1:123SHELL.SEE %2:>nul
  33. copy %1:123SHELL.DOC %2:>nul
  34. copy %1:NEW-NEWS.NOW %2:>nul
  35. copy %1:TD.DRV %2:>nul
  36. copy %1:WORKCOPY.BAT %2:>nul
  37. echo  files are now copied
  38. echo Done!
  39. goto done
  40. :badargs
  41. cls
  42. echo  You entered a blank parameter line, I need to know the drives
  43. echo  where you want to copy 123Shell to.
  44. echo  
  45. echo  Please enter the drive letters you wish to copy from and to.
  46. echo  
  47. echo  If you enter WORKCOPY A B, it will make a copy of the version on
  48. echo  drive A: and reproduce it on drive B:
  49. echo  
  50. :done
  51.